home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
mxcode
/
gsrc211
/
dump.asm
< prev
next >
Wrap
Assembly Source File
|
1994-03-04
|
571b
|
47 lines
ideal
P286
model Huge
jumps
stack 1024
include "gusmod.inc"
include "musgus.asm"
segment MyCode
assume cs:MyCode,ds:MyCode
MyFile db 'M.INF',0
proc DumpSoundSeg
push ds
mov ax,cs
mov ds,ax
mov dx,offset MyFile
mov cx,0
mov ah,3Ch
int 21h
mov bx,ax
mov cx,SizeSoundSeg
mov dx,0
push ds
mov ax,GUSSound
mov ds,ax
mov ah,40h
int 21h
pop ds
mov ah,3Eh
int 21h
pop ds
ret
endp DumpSoundSeg
Start:
call DumpSoundSeg
mov ax,4C00h
int 21h
ends MyCode
end Start